home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / dpmigcc5.zip / RSX / SOURCE / DJLIBRSX / _PTRACE.H < prev    next >
C/C++ Source or Header  |  1994-05-27  |  533b  |  27 lines

  1. #if !defined (_SYS_PTRACE_H)
  2. #define _SYS_PTRACE_H
  3.  
  4. #if defined (__cplusplus)
  5. extern "C" {
  6. #endif
  7.  
  8. #define PTRACE_TRACEME        0
  9. #define PTRACE_PEEKTEXT     1
  10. #define PTRACE_PEEKDATA     2
  11. #define PTRACE_PEEKUSER     3
  12. #define PTRACE_POKETEXT     4
  13. #define PTRACE_POKEDATA     5
  14. #define PTRACE_POKEUSER     6
  15. #define PTRACE_RESUME       7
  16. #define PTRACE_EXIT         8
  17. #define PTRACE_STEP         9
  18. #define PTRACE_SESSION      10
  19.  
  20. int ptrace (int, int, int, int);
  21.  
  22. #if defined (__cplusplus)
  23. }
  24. #endif
  25.  
  26. #endif
  27.